fix(gemspec): raise required_ruby_version to 2.7.0 - #4
Merged
Conversation
The graphql gem (>= 2.4.12, our floor) transitively requires Ruby >= 2.7.0, but our gemspec still advertised >= 2.6.0. Dependabot's bundler resolver picks a Ruby version from this constraint and was resolving against 2.6.10, causing every dependency update job to fail with a version solving error. Raised to the true floor dictated by our graphql dependency rather than tightening to match the CI matrix (3.3+), to avoid dropping support for Ruby versions that aren't tested but may still work.
al-yanna
approved these changes
Aug 13, 2026
andrewthauer
pushed a commit
that referenced
this pull request
Aug 18, 2026
🤖 I have created a release *beep* *boop* --- ## [0.6.4](v0.6.3...v0.6.4) (2026-08-17) ### Bug Fixes * **gemspec:** raise required_ruby_version to 2.7.0 ([#4](#4)) ([e85343b](e85343b)) * **release:** stop expecting component-prefixed release tags ([#3](#3)) ([bd8d30f](bd8d30f)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Dependabot's bundler update jobs (e.g. run 31612293805) have been failing with a version solving error. The
graphqlgem (which we require>= 2.4.12) transitively requires Ruby >= 2.7.0, but our gemspec still advertisedrequired_ruby_version >= 2.6.0. Dependabot's bundler resolver picks a Ruby version to resolve against based on that floor and was landing on Ruby 2.6.10, which is incompatible withgraphql's own requirement — so every dependency update job errored out before it could even propose a PR.Changes
Raise
required_ruby_versioningraphql-hive.gemspecfrom>= 2.6.0to>= 2.7.0, matching the actual floor imposed by ourgraphqldependency, rather than tightening it to match the CI matrix (currently 3.3+). This avoids dropping support for Ruby versions that aren't actively tested in CI but may still work fine.